home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / chrome / calendar.jar / content / calendar / calendar-alarm-snooze-popup.js < prev    next >
Text File  |  2007-12-09  |  7KB  |  188 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Mozilla Calendar code.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  *   Philipp Kewisch <mozilla@kewis.ch>
  18.  * Portions created by the Initial Developer are Copyright (C) 2007
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  25.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. /*
  38.  * In case you need to work around having a popup in a popup, this seems to do
  39.  * it. The trick is to create a window, style it like a popup and make it depend
  40.  * on its opener.
  41.  *
  42.  * Regarding the window, it is important to set the hidechrome="true" attribute,
  43.  * use blur, mouseout, keydown handlers as in the functions below.
  44.  *
  45.  * To mimic the menupopup, I used a radiogroup with some automatic selecting. Be
  46.  * sure to focus the radiogroup on window load, and add handlers for click and
  47.  * keypress.
  48.  *
  49.  * In the opening dialog, use window.openDialog with the following window
  50.  * options:
  51.  *   "chrome,titlebar=no,dependent=yes"
  52.  * Additionally, you will want to set top and left options just below the
  53.  * opening button/menu.
  54.  */
  55.  
  56. /**
  57.  * Function to setup the default snooze length for the textbox and its unit
  58.  * menulist.
  59.  */
  60. function setupDefaultSnooze() {
  61.     var snoozePref = getPrefSafe("calendar.alarms.defaultsnoozelength", 0);
  62.     if (snoozePref <= 0) {
  63.         snoozePref = 5;
  64.     }
  65.  
  66.     if ((snoozePref % 60) == 0) {
  67.         snoozePref = snoozePref / 60;
  68.         if ((snoozePref % 24) == 0) {
  69.             snoozePref = snoozePref / 24;
  70.             document.getElementById("custom-menupopup-alarm-unit").selectedIndex = 2; // Hours
  71.         } else {
  72.             document.getElementById("custom-menupopup-alarm-unit").selectedIndex = 1; // Days
  73.         }
  74.     }
  75.  
  76.     document.getElementById("custom-menupopup-alarm-value").value = snoozePref;
  77.     checkSnoozeValue();
  78. }
  79.  
  80. /**
  81.  * Check the snooze value for a valid positive integer, disabling the accept
  82.  * button if it is not found.
  83.  */
  84. function checkSnoozeValue() {
  85.     var snoozeValue = parseInt(document.getElementById("custom-menupopup-alarm-value").value);
  86.     document.getElementById("custom-menupopup-alarm-button").disabled = !(snoozeValue > 0);
  87. }
  88.  
  89. function windowLoad(event) {
  90.     setupDefaultSnooze();
  91. }
  92.  
  93. function windowBlur(event) {
  94.     // Only close the window, if the targeted element is not in the window.
  95.     if (event.target.localName == null) {
  96.         window.close();
  97.     }
  98. }
  99.  
  100. function windowMouseOut(event) {
  101.     try {
  102.         document.getElementById("custom-menupopup-radiogroup")
  103.                 .selectedItem = null;
  104.     } catch (e) {
  105.         // Catch the error that happens when unselecting all items.
  106.     }
  107. }
  108.  
  109. function windowKeyDown(event) {
  110.     // Pressing any other key not mentioned here in the radiogroup should close
  111.     // the window to mimic menupopup behavior
  112.     var allowedKeys = [ event.DOM_VK_DOWN,
  113.                         event.DOM_VK_UP,
  114.                         event.DOM_VK_RETURN,
  115.                         event.DOM_VK_ENTER,
  116.                         event.DOM_VK_TAB ];
  117.     if (event.target.localName == "radiogroup" &&
  118.         allowedKeys.indexOf(event.keyCode) < 0) {
  119.         window.close();
  120.     }
  121.  
  122.     // Pressing any of the following keys should definitely close the window.
  123.     var closerKeys = [ event.DOM_VK_ESCAPE ];
  124.     if (closerKeys.indexOf(event.keyCode) > -1) {
  125.         window.close();
  126.     }
  127.  
  128.     if (event.keyCode == event.DOM_VK_DOWN &&
  129.         event.target.localName == "window") {
  130.         // If the window is focused and the down key is pressed, we want the
  131.         // first item to be selected.
  132.         var radioGroup = document.getElementById("custom-menupopup-radiogroup");
  133.         radioGroup.focus();
  134.         radioGroup.selectedItem = radioGroup.lastChild;
  135.     } else if (event.keyCode == event.DOM_VK_UP &&
  136.         event.target.localName == "window") {
  137.         // If the up key is pressed, we want the last item to be selected.
  138.         var radioGroup = document.getElementById("custom-menupopup-radiogroup");
  139.         radioGroup.focus();
  140.         radioGroup.selectedItem = radioGroup.firstChild;
  141.     }
  142.  
  143. }
  144.  
  145. function radiogroupBlur(event, radiogroup) {
  146.     try {
  147.         // Unselect when leaving the radiogroup.
  148.         document.getElementById("custom-menupopup-radiogroup")
  149.                 .selectedItem = null;
  150.     } catch (e) {
  151.         // Catch the error that happens when unselecting all items.
  152.     }
  153. }
  154.  
  155. function radiogroupMouseOver(event, radiogroup) {
  156.     window.focus();
  157.     // Automatically select the radio when mousing over it.
  158.     radiogroup.selectedItem = event.target;
  159. }
  160.  
  161. function radioSnooze(event) {
  162.     // Only certain keys should trigger snoozing.
  163.     if (event.keyCode &&
  164.         event.keyCode != event.DOM_VK_ENTER &&
  165.         event.keyCode != event.DOM_VK_RETURN &&
  166.         event.keyCode != event.DOM_VK_SPACE) {
  167.         return;
  168.     }
  169.  
  170.     // The passed window argument is the bound element that opened us. Snooze
  171.     // the connected alarm and close the window.
  172.     window.arguments[0].snoozeAlarm(event.target.value);
  173.     window.close();
  174. }
  175.  
  176. function textboxSnooze() {
  177.     var val = document.getElementById("custom-menupopup-alarm-value");
  178.     var unit = document.getElementById("custom-menupopup-alarm-unit");
  179.  
  180.     // The unit value is the multiplier to convert the textbox value into
  181.     // minutes.
  182.     var minutes = val.value * unit.selectedItem.value;
  183.  
  184.     // Snooze the connected alarm and close the window.
  185.     window.arguments[0].snoozeAlarm(minutes);
  186.     window.close();
  187. }
  188.